home *** CD-ROM | disk | FTP | other *** search
- stop();
- largeView._visible = false;
- one.onRollOver = function()
- {
- this.gotoAndStop("rollOver");
- };
- one.onRollOut = function()
- {
- this.gotoAndStop("rollOut");
- };
- two.onRollOut = function()
- {
- this.gotoAndStop("rollOut");
- };
- two.onRollOver = function()
- {
- this.gotoAndStop("rollOver");
- };
- three.onRollOut = function()
- {
- this.gotoAndStop("rollOut");
- };
- three.onRollOver = function()
- {
- this.gotoAndStop("rollOver");
- };
- viewIcon.onRollOut = function()
- {
- this.gotoAndStop("rollOut");
- };
- viewIcon.onRollOver = function()
- {
- this.gotoAndStop("rollOver");
- };
- viewIcon.onRelease = function()
- {
- largeView._visible = true;
- largeViewClose._visible = true;
- };
- answer.onRollOver = function()
- {
- this.gotoAndStop("rollOver");
- };
- answer.onRollOut = function()
- {
- this.gotoAndStop("rollOut");
- };
- largeView.largeViewClose.onRollOver = function()
- {
- this.gotoAndStop("rollOver");
- };
- largeView.largeViewClose.onRollOut = function()
- {
- this.gotoAndStop("rollOut");
- };
- largeView.largeViewClose.onRelease = function()
- {
- largeView._visible = false;
- };
- largeView.dragBar.useHandCursor = false;
- largeView.dragBar.onPress = function()
- {
- this._parent.startDrag();
- largeView.dragBar.onMouseMove = this.onMouseMoveFunc;
- };
- largeView.dragBar.onRelease = function()
- {
- this._parent.stopDrag();
- largeView.dragBar.onMouseMove = null;
- };
- largeView.dragBar.onMouseMoveFunc = function()
- {
- updateAfterEvent();
- };
-